home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / OutOfPhase1.01Source / OutOfPhase Folder / LittleButtonImages.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-01  |  695 b   |  31 lines  |  [TEXT/KAHL]

  1. /* LittleButtonImages.h */
  2.  
  3. #ifndef Included_LittleButtonImages_h
  4. #define Included_LittleButtonImages_h
  5.  
  6. /* LittleButtonImages module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Screen */
  12.  
  13. /* forward */
  14. struct Bitmap;
  15.  
  16. /* these bitmaps are 12x12 pixels */
  17. #ifndef Compiling_LittleButtonImages
  18.     extern struct Bitmap*            PlusSignNormal;
  19.     extern struct Bitmap*            PlusSignMouseDown;
  20.     extern struct Bitmap*            MinusSignNormal;
  21.     extern struct Bitmap*            MinusSignMouseDown;
  22. #endif
  23.  
  24. /* initialize the plus and minus bitmaps */
  25. MyBoolean                    InitializeLittleButtonImages(void);
  26.  
  27. /* dispose of the little button images */
  28. void                            ShutdownLittleButtonImages(void);
  29.  
  30. #endif
  31.